Premature Closure of Fixed Deposit
POST /fixed-deposit/premature-closure
Description
Allows users to request the premature closure of a fixed deposit account. This endpoint requires authentication and provides a structured request for withdrawal purposes.
Headers:
| Name | Type | Description |
|---|---|---|
tenantId | string | The unique identifier for the tenant (required). |
countryCode | string | The country code (required). |
userId | string | The unique identifier for the user (required). |
Request Body:
| Name | Type | Description |
|---|---|---|
fixedDepositAccountUUID | string | The unique identifier of the fixed deposit account (required). |
purposeOfWithdrawal | string | The reason for prematurely withdrawing funds (required). |
Example Request Body:
{
"fixedDepositAccountUUID": "string",
"purposeOfWithdrawal": "string"
}'
Sample Response: 200
{
"status": true,
"statusCode": 0,
"message": "string",
"data": {},
"errors": [
{
"message": "string",
"data": {},
"descriptiveMessage": "string"
}
]
}
LANGUAGE
CURL REQUEST
curl --request POST \
--url /fixed-deposit/premature-closure \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!